projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
265375e
)
(round_up): Make arguments and return type unsigned.
author
Karl Heuer
<kwzh@gnu.org>
Thu, 2 Oct 1997 03:12:38 +0000
(
03:12
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Thu, 2 Oct 1997 03:12:38 +0000
(
03:12
+0000)
src/unexelf.c
patch
|
blob
|
history
diff --git
a/src/unexelf.c
b/src/unexelf.c
index 0a8b6068d308a9419bde2a9cdaed3c31bade723a..799052baf52506ef053900222bde7709416c04b5 100644
(file)
--- a/
src/unexelf.c
+++ b/
src/unexelf.c
@@
-544,9
+544,9
@@
typedef unsigned char byte;
/* Round X up to a multiple of Y. */
-int
+ElfW(Addr)
round_up (x, y)
-
int
x, y;
+
ElfW(Addr)
x, y;
{
int rem = x % y;
if (rem == 0)